From 3c0d13d9d16f598c1f8078982eb261d1262a7f7b Mon Sep 17 00:00:00 2001 From: Dario Faggioli Date: Thu, 19 May 2016 06:04:55 +0200 Subject: [PATCH] xenalyze: fix a spurious newline in dump mode, when tracing context switches. Signed-off-by: Dario Faggioli Acked-by: George Dunlap Acked-by: Wei Liu Release-acked-by: Wei Liu --- tools/xentrace/xenalyze.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/xentrace/xenalyze.c b/tools/xentrace/xenalyze.c index b949986f07..01ead8bcf0 100644 --- a/tools/xentrace/xenalyze.c +++ b/tools/xentrace/xenalyze.c @@ -7655,7 +7655,7 @@ void sched_process(struct pcpu_info *p) printf(", was runnable for %u.%uus, ", r->rsince / 1000, r->rsince % 1000); if ( r->slice > 0 ) - printf("next slice %u.%uus\n", r->slice / 1000, + printf("next slice %u.%uus", r->slice / 1000, r->slice % 1000); printf("\n"); } -- 2.30.2